Function @"unreachable" [src]
Prototype
pub fn @"unreachable"(self: *WipFunction) Allocator.Error!Instruction.Index
Parameters
self: *WipFunction
Source
pub fn @"unreachable"(self: *WipFunction) Allocator.Error!Instruction.Index {
try self.ensureUnusedExtraCapacity(1, NoExtra, 0);
return try self.addInst(null, .{ .tag = .@"unreachable", .data = undefined });
}